home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / gforms / demo1.dfm / demo1.txt
Text File  |  1996-09-15  |  1KB  |  48 lines

  1. object MDIParent: TMDIParent
  2.   Left = 335
  3.   Top = 123
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'MDI Parent'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   FormStyle = fsMDIForm
  12.   Menu = MainMenu1
  13.   PixelsPerInch = 120
  14.   WindowMenu = WindowMenu
  15.   TextHeight = 16
  16.   object MainMenu1: TMainMenu
  17.     Left = 16
  18.     Top = 24
  19.     object FileMenu: TMenuItem
  20.       Caption = '&File'
  21.       object FileNew: TMenuItem
  22.         Caption = '&New'
  23.         OnClick = FileNewClick
  24.       end
  25.       object FileExit: TMenuItem
  26.         Caption = '&Exit'
  27.         OnClick = FileExitClick
  28.       end
  29.     end
  30.     object WindowMenu: TMenuItem
  31.       Caption = '&Window'
  32.       object WindowTile: TMenuItem
  33.         Caption = '&Tile'
  34.         OnClick = WindowTileClick
  35.       end
  36.       object WindowCascade: TMenuItem
  37.         Caption = '&Cascade'
  38.         OnClick = WindowCascadeClick
  39.       end
  40.     end
  41.   end
  42.   object FormSaver1: TFormSaver
  43.     IniSection = 'MDIParent'
  44.     Left = 56
  45.     Top = 24
  46.   end
  47. end
  48.